projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ca83cf
)
(bcopy, bzero, bcmp): Defined.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 4 Jan 1994 08:42:21 +0000
(08:42 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 4 Jan 1994 08:42:21 +0000
(08:42 +0000)
src/s/sco4.h
patch
|
blob
|
history
diff --git
a/src/s/sco4.h
b/src/s/sco4.h
index 16866059d18477dd40a4e776ca003618d161a9e1..ec5b5c3922bed82fda85ae4eb2f9ec535a5a3d4c 100644
(file)
--- a/
src/s/sco4.h
+++ b/
src/s/sco4.h
@@
-123,3
+123,8
@@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#else
#define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
#endif
+
+/* miano@acosta.enet.dec.com says these are needed. */
+#define bcopy(b1,b2,len) memmove (b2, b1, len)
+#define bzero(b,len) memset (b, 0, len)
+#define bcmp(b1,b2,len) memcmp (b1, b2, len)